home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 1 / Amiga Tools.iso / egs-tools / egs_dev-disk / egsdemos / egsexamples / requester / nonmodal / global.h next >
Encoding:
C/C++ Source or Header  |  1994-06-06  |  1.6 KB  |  65 lines

  1. /*
  2. ** Autor: Markus van Kempen
  3. ** Date : 18. Dezember 1992
  4. **
  5. ** Global Variablen & Structure
  6. **
  7. **
  8. ** See myopen.c
  9. **
  10. **/
  11.  
  12. #include "includes.c"
  13. #include "protos.h"
  14.  
  15. struct OpenStructTyp
  16. {
  17.     ULONG* Var;
  18.     char * Name;
  19.     ULONG  Version;
  20. };
  21.  
  22. /*
  23.  * The EGS Lib-Bases
  24.  *
  25.  */
  26.  
  27. struct Library *EGSBase;
  28. struct Library *EGSBlitBase;
  29. struct Library *EGSLayersBase;
  30. struct Library *EGSGfxBase;
  31. struct Library *EGSIntuiBase;
  32. struct Library *EGBBase;
  33. struct Library *EGSRequestBase;
  34. struct Library *EGBMenuSelectBase;
  35. struct Library *EGBRadioBase;
  36. struct Library *EGBScrollBase;
  37. struct Library *EGBSelectBase;
  38. struct Library *EGBSetBase;
  39. struct Library *EGBTextInfoBase;
  40.  
  41. /********************************************/
  42.  
  43. struct OpenStructTyp OpenStruct[] =
  44. {
  45.   { (ULONG*) &EGSBase          , "egs.library",0               },
  46.   { (ULONG*) &EGSBlitBase      , "egsblit.library",0           },
  47.   { (ULONG*) &EGSLayersBase    , "egslayers.library",0         },
  48.   { (ULONG*) &EGSGfxBase       , "egsgfx.library",0            },
  49.   { (ULONG*) &EGSIntuiBase     , "egsintui.library",0          },
  50.   { (ULONG*) &EGBBase          , "egsgadbox.library",0         },
  51.   { (ULONG*) &EGSRequestBase   , "egsrequest.library",0         },
  52.   { (ULONG*) &EGBMenuSelectBase, "egb/gbmenuselect.library",0  },
  53.   { (ULONG*) &EGBRadioBase     , "egb/gbradio.library",0       },
  54.   { (ULONG*) &EGBScrollBase    , "egb/gbscrollbox.library",0   },
  55.   { (ULONG*) &EGBSelectBase    , "egb/gbselect.library",0      },
  56.   { (ULONG*) &EGBSetBase       , "egb/gbsets.library",0        },
  57.   { (ULONG*) &EGBTextInfoBase  , "egb/gbtextinfo.library",0    },
  58.   { 0L,0L,0L }
  59. };
  60.  
  61.  
  62.  
  63.  
  64.  
  65.